Conditions | 1 |
Total Lines | 11 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | // Type definitions for imaadpcm 5.0 |
||
2 | // Project: https://github.com/rochars/imaadpcm |
||
3 | // Definitions by: Rafael S. Rocha <https://github.com/rochars> |
||
4 | // Definitions: https://github.com/rochars/imaadpcm |
||
5 | |||
6 | /** |
||
7 | * Encode 16-bit PCM samples into 4-bit IMA ADPCM samples. |
||
8 | * @param {!Int16Array} samples A array of samples. |
||
9 | * @return {!Uint8Array} |
||
10 | */ |
||
11 | export function encode(samples: Int16Array): Uint8Array; |
||
12 | |||
34 |